 
.QC_switch {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 34px;
  background-color: #ccc;
   border-radius: 34px;
   cursor: pointer;
   overflow:hidden;
   margin-left:30px;
} 
.QC_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.QC_switch .QC_switch_slider {
  position: absolute;
  
  
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  width: 68px;
  height: 34px;
   left:0;
   top:0;
   border-radius: 34px;
   
}
.QC_switch .QC_switch_slider:before,
.QC_switch .QC_switch_slider:after {
  line-height: 34px ;
  width: 68px;
  text-align: center;
  font-weight: 600;
  font-size: .75em;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  bottom: 0;
  transition: all 0.25s;
   
}
.QC_switch .QC_switch_slider:before {
  content: 'No';
  right: 10px;
  text-align:right;
  opacity:1;
}
.QC_switch .QC_switch_slider:after {
  content: 'Yes';
  left: 8px;
  opacity: 0 ;
  text-align:left;
}

.QC_switch  .QC_switch_handle {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius:50%;
}
.QC_switch input:checked + .QC_switch_slider {
  transition: background-color 0.25s;
}
.QC_switch input:checked + .QC_switch_slider + .QC_switch_handle {
  -webkit-transform: translateX(34px);
  -ms-transform: translateX(34px);
  transform: translateX(34px);
  
}
  
 
.QC_switch input:checked + .QC_switch_slider:before {
  opacity: 0;
}
.QC_switch input:checked + .QC_switch_slider:after {
  opacity: 1;
  color:white;
}
 





.QC_switch  .QC_switch_slider {
  color: #6b7381;
   
}

.QC_switch  .QC_switch_slider:before,
.QC_switch   .QC_switch_slider:after {
  color: #6b7381;
}
 
 
 